home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / DORWAY.ZIP / HOST.BAK < prev    next >
Text File  |  1995-03-21  |  810b  |  26 lines

  1. @echo off
  2. rem
  3. rem  A batch file for use with DWHost and Doorway
  4. rem
  5. C:
  6. rem CHANGE THE ABOVE DRIVE SPEC TO THAT ON WHICH DW HOST RESIDES.
  7. CD \OBV2\DOOR
  8. rem CHANGE THE ABOVE DIRECTORY TO THAT IN WHICH DW HOST RESIDES.
  9. if exist quit del quit
  10. if exist okay del okay
  11. DWhost %1
  12. if exist quit goto done
  13. rem The above statement allows exit if you hit F1 or F2 within DW Host.
  14. if not exist okay goto off
  15. del okay
  16. DOORWAY COM2 /A:ON /V:D^O /B:MS /M:32767 /O:T /S:* /C:DOS
  17. rem The above line can be edited for you own optimization. IE. use COM2
  18. :off
  19. DWhost o
  20. rem   The above line invokes DWHost with the O parm to cause logoff and
  21. rem     to drop DTR.
  22. rem   And the line below re-invokes this batch file from the beginning so
  23. rem     that DW Host will recycle to await the next call.
  24. %0 %1
  25. :done
  26.